home *** CD-ROM | disk | FTP | other *** search
/ Amiga Magazin: Amiga-CD 1996 September & October / Amiga-CD 1996 #9-10.iso / aminet / 7-96 / lha-archive / aspell.lha / AlphaSpell / RemoveAS6 < prev    next >
Text File  |  1996-05-01  |  593b  |  21 lines

  1. ; Remove AlphaSpell 6
  2.  
  3. (transcript "Removing AlphaSpell 6")
  4. (welcome "This script will remove AlphaSpell 6 from your system.")
  5.  
  6. (if (exists "AlphaSpell:" (noreq))
  7.     (
  8.         (startup
  9.             (prompt "Removing AlphaSpell: Assign from User-Startup")
  10.             (help @startup-help)
  11.         )
  12.         (set #path (getassign "AlphaSpell"))
  13.         (makeassign "AlphaSpell")
  14.         (run (cat "delete " #path " all quiet"))
  15.         (delete #path ".info")
  16.         (message "The removal of AlphaSpell 6 is finished.")
  17.     )
  18.     (message "AlphaSpell 6 is not even installed.")
  19. )
  20. (exit (quiet))
  21.